home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 25
/
AMIGAplus Sonderheft 25 (2000)(Falke)(DE)(Track 1 of 4)[!].iso
/
Tools
/
SFX-Player
/
songplayer
/
arexx
/
Status.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
2000-05-08
|
243b
|
17 lines
/* Simple rexx test file for SongPlayer */
options results
options FailAt 100
address 'SONGPLAYER.1'
drop result
get_time
secs = result
get_selected
sel = result
get_state
sta = result
say 'time='secs' secs state='sta' selected='sel
exit